Proper connect_port
[juce-lv2.git] / juce / source / extras / the jucer / src / templates / jucer_ComponentTemplate.h
blob210d2372b0c1f52e263d48d9ed9bd8b3cdb35219
1 /*
2 ==============================================================================
4 This is an automatically generated file created by the Jucer!
6 Creation date: %%creationTime%%
8 Be careful when adding custom code to these files, as only the code within
9 the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded
10 and re-saved.
12 Jucer version: 1.12
14 ------------------------------------------------------------------------------
16 The Jucer is part of the JUCE library - "Jules' Utility Class Extensions"
17 Copyright 2004-6 by Raw Material Software ltd.
19 ==============================================================================
22 #ifndef %%headerGuard%%
23 #define %%headerGuard%%
25 //[Headers] -- You can add your own extra header files here --
26 #include "juce.h"
27 //[/Headers]
29 %%includeFilesH%%
31 //==============================================================================
32 /**
33 //[Comments]
34 An auto-generated component, created by the Jucer.
36 Describe your class and how it works here!
37 //[/Comments]
39 %%classDeclaration%%
41 public:
42 //==============================================================================
43 %%className%% (%%constructorParams%%);
44 ~%%className%%();
46 //==============================================================================
47 //[UserMethods] -- You can add your own custom methods in this section.
48 //[/UserMethods]
50 %%publicMemberDeclarations%%
52 //==============================================================================
53 juce_UseDebuggingNewOperator
55 private:
56 //[UserVariables] -- You can add your own custom variables in this section.
57 //[/UserVariables]
59 //==============================================================================
60 %%privateMemberDeclarations%%
62 //==============================================================================
63 // (prevent copy constructor and operator= being generated..)
64 %%className%% (const %%className%%&);
65 const %%className%%& operator= (const %%className%%&);
69 #endif // %%headerGuard%%